git 复习操作

git init GIT 创建git
git add . 添加
git commit -m “” 提交
git log 日志
git log --all --oneline --graoh 所有日志行显示 树显示
git branch rich 穿件分支 git checkout -d ff 穿件切换分支
git merge rich 合并分支rich到当前分支
git remote add git https://github.com/zhao1zhihui/git.git 关联远程仓库并取名字
git push -u zzh master 提交文件到远程仓库
git clone https://github.com/zhao1zhihui/git 克隆远程仓库到本地 注意默认名字变了
git remote -v 查看当前信息

你可能感兴趣的:(git 复习操作)