git 常用命令

查看所有分支

git branch -a 

新建分支

git branch test

切换分支

git checkout test

仓库初始化

git init

添加远程仓库

git  remote add origin 仓库名

删除远程分支

git remote rm 远程分支

提交到暂存区(添加文件)

git add 文件名

提交到本地仓库

git commit -m "简介"

推送到远程仓库

git push origin 远程分支名

git fetch 拉取最新提交,不会跟本地代码合并

git pull 拉取最新提交并与本地代码合并

你可能感兴趣的:(git,github)