GIT 常用命令

1、提交命令

git clone
git add . //全部添加到暂缓区
git add //选择添加到暂缓区
git commit -m <"自定义信息">
git push origin

2、切换分支

git checkout

3、git 放弃本地修改(即没 add 也没 commit)

git checkout . //全部放弃
git checkout --fliename

4、git 放弃暂存区的修改 (只add没有commit)

git reset HEAD filename

5、 git 放弃已经 commit 的修改

git reset --hard

6、删除远程分支

git push origin --delete

你可能感兴趣的:(GIT 常用命令)