GIT 常用命令

GIT 常用命令


git commit -am "commit info";  //提交代码

git push origin master; //将代码推送到远程仓库(master)为分支名称

git status; //查看本地修改信息

git branch branchName; //创建分支 branchName 为分支名

git checkout branchName; //qiehua切换分支 branchName 为分支名

git branch; //查看本地分支

git pull; //从远程仓库更新代码

git clone repository; //下载新的远程仓库 repository远程仓库地址