This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git checkout <branch> | |
git tag -a v1.4 -m "[PLATFORM] publish vx.y.z" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git merge --squash <branch to merge into current branch> | |
git add --all | |
git commit -a -m "Merged some other branch" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone https://dassedev.visualstudio.com/Common/_git/x-ng2-seed <your project name> | |
rm -rf .git <delete .git> | |
git init | |
<create your new online project repository> | |
git remote add origin <url of project repository> | |
git add --all | |
git commit -m'Setup' | |
git remote add upstream https://dassedev.visualstudio.com/Common/_git/x-ng2-seed | |
git fetch upstream | |
git merge upstream/master --allow-unrelated-histories |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git commit --allow-empty |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git branch publish | |
git checkout publish | |
git log --oneline | |
git rebase --root -i |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git tag -a v1.4 -m "[message]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git reset --hard origin/master |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FIRST: | |
On Windows with $HOME mapped to a network drive, global .gitconfig can exist in multile places. | |
When using the Windows command shell, batch scripts or Windows programs, the file will be read from: | |
%USERPROFILE%\.gitconfig | |
However, when you're using Gi msys (bash) this will be read from | |
$HOME/.gitconfig |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm update -D && npm update -S | |
https://docs.npmjs.com/files/package.json#dependencies | |
https://docs.npmjs.com/misc/semver |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm show angular2-busy@* version |