第一步:
git config --global user.name "Your Name"
:配置用户名;
git config --global user.email "Email"
:配置邮箱;
第二步:
git add file.name
:添加文件到缓存中;
第三步:
git commit -m "first commit"
:添加项目;
第四步:
git remote add origin git地址或sshKey
:链接到远程仓库,这时会让输入gitHub的用户名和密码;
第五步:
git push -u origin master
:添加成功;
分支管理:
git branch newBranch
:新建分支;
git branch
:查看分支;
输出:
- master
newBranch
git checkout newBranch
:切换分支;
输出:
Switched to branch "newBranch"
切换后可用git branch来查看是否切换到当前分支:
gti branch
=> 输出:
master
- newBranch
提交改动到当前分支:
git add .
git commit -a
git branch -D newBranch
:删除分支;