Common commands for Git

Below commands are used with Git Bash on windows platform:


Run 'git help git' to display the help index.
Run 'git help <command>' to display help for specific commands.

After you modified some files, use below commands to check in your modification:
git checkout -b new
git checkout new
git add -A
git commit -m "submit logout feature"
git push origin
git checkout master
git push origin
git branch -d new
git branch -D new

转载于:https://www.cnblogs.com/vanessabutterfly/archive/2013/05/27/3101651.html

猜你喜欢

转载自blog.csdn.net/weixin_33922670/article/details/94238389