基本安装可查看 http://help.github.com
如果删除了本地的文件,要恢复相关文件,在github存在(别人增加的),则:
git pull <远程主机名> <远程分支名>:<本地分支名>
如果是自己创建的,则
回退到指定的版本
git reset github上面的版本号
然后
git checkout filename
如果出现
fatal: remote origin already exists,
则
git remote rm origin
git remote add origin git仓库url
==========================
基本操作:
初始化操作:
git init
git add 目录/*
git commit -m "提示信息"
git push -u origin master
-------------------------
当修改之后,再次提交时,则
git add 目录/*
git commit -m "提示信息"
git push -u origin master
========================
查看分支:git branch
创建分支:git branch <name>
切换分支:git checkout <name>
创建+切换分支:git checkout -b <name>
合并某分支到当前分支:git merge <name>
删除分支:git branch -d <name>
时间: 2024-10-06 04:46:23