Git命令
git init
在命令行输入git init,会在当前的目录创建新仓库。
git clone
在命令行输入git clone,会克隆一个git的仓库到本目录下。
如果一个仓库包含另一个仓库,有可能报错。
git add
你的本地仓库由 git 维护的三棵“树”组成。第一个是你的 工作目录,它持有实际文件;第二个是 暂存区(Index),它像个缓存区域,临时保存你的改动;最后是 HEAD,它指向你最后一次提交的结果。
## 你可以提出更改(把它们添加到暂存区),使用如下命令:
git add
git add *
git status
git status命令用于查看项目的当前状态。
git commit
git commit -m "代码提交信息"
用命令git commit告诉Git,把文件提交到仓库。 -m后面输入的是本次提交的说明。
git diff可以查看还没有提交到暂存区的文件的变化情况。显示的格式正是Unix通用的diff格式。
git push
git push origin master
把本地仓库中的HEAD提交到远端的仓库中。
master可以换成你想要推送的任何分支。
git remote
生成ssh秘钥
ssh-keygen -t rsa -C "abcd@efgh.com" //github登录邮箱
把生成的秘钥添加到GitHub中,名字可以随意,秘钥内容不可更改。
测试是否成功添加了
>ssh git@github.com
##正常情况下,回显如下
PTY allocation request failed on channel 0
Hi Xxx! You've successfully authenticated, but GitHub does not provide shell access.
Connection to github.com closed.
然后远程推送
git remote add origin https://github.com/UserName/gitTest.git
git push -u origin master
第一次要添加 -u 这个参数。这样Git不但会把本地的master分支内容推送的远程新的master分支,还会把本地的master分支和远程的master分支关联起来,在以后的推送或者拉取时就可以简化命令。
查看远程仓库
git remote -v
origin https://github.com/**/**.git (fetch)
origin https://github.com/**/**.git (push)
本地拉取远程代码
从远程获取最新版本到本地
# git fetch [远程分支,可选]:[新建本地分支,可选]
git fetch origin
把远程下载下来的代码合并到本地仓库,远程的和本地的合并
# 合并指定分支到当前分支
# git merge [branch]
git merge origin/master
另一种方式
# git pull
git pull origin master
1.git pull需要指定特定远程分支参数 2.git pull指令会自动拉取数据并将其合并至当前分支,而git fetch只是拉取所有数据及分支,不影响本地数据,我们需要手动合并。
本地向远程提交代码
1.查看更改
# 显示有变更的文件
$ git status
2.添加修改到暂存区
# 添加指定文件到暂存区
$ git add [file1] [file2] / [dir]
3.提交到仓库
# 提交暂存区到仓库区
$ git commit -m [message]
4.推送到远程
# 上传本地指定分支到远程仓库
$ git push [remote] [branch]
# 推送所有分支到远程仓库
$ git push [remote] --all
网友评论