欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Git 版本管理的使用方法

程序员文章站 2022-07-13 13:58:22
...

Git 版本管理的使用方法

思忖良久,还是直接上命令吧~

创建本地仓库

git init

获取远程仓库

git clone [url]

创建远程仓库

// 添加一个新的 remote 远程仓库
git remote add [remote-name] [url]

// 列出所有 remote 的别名
git remote

// 列出所有 remote 的 url
git remote -v

// 删除一个 renote
git remote rm [name]

// 重命名 remote
git remote rename [old-name] [new-name]

从本地仓库中删除

git rm file.txt         // 从版本库中移除,删除文件
git rm file.txt -cached // 从版本库中移除,不删除原始文件
git rm -r xxx           // 从版本库中删除指定文件夹

从本地仓库中添加新的文件

git add .               // 添加所有文件
git add file.txt        // 添加指定文件

提交,把缓存内容提交到 HEAD 里

git commit -m "注释"

撤销

// 撤销最近的一个提交.
git revert HEAD

// 取消 commit + add
git reset --mixed

// 取消 commit
git reset --soft

// 取消 commit + add + local working
git reset --hard

把本地提交 push 到远程服务器

git push [remote-name] [loca-branch]:[remote-branch]

查看状态

git status

从远程库中下载新的改动

git fetch [remote-name]/[branch]

合并下载的改动到分支

git merge [remote-name]/[branch]

从远程库中下载新的改动

pull = fetch + merge

git pull [remote-name] [branch]

分支

// 列出分支
git branch

// 创建一个新的分支
git branch (branch-name)

// 删除一个分支
git branch -d (branch-nam)

// 删除 remote 的分支
git push (remote-name) :(remote-branch)

切换分支

// 切换到一个分支
git checkout [branch-name]

// 创建并切换到该分支
git checkout -b [branch-name]

下面的是SSH认证,主要是免去频繁输入密码,方便使用

首先呢,我们先建立ssh密匙。

ssh key must begin with 'ssh-ed25519', 'ssh-rsa', 'ssh-dss', 'ecdsa-sha2-nistp256', 'ecdsa-sha2-nistp384', or 'ecdsa-sha2-nistp521'. -- from github

根据以上文段我们可以知道github所支持的ssh密匙类型,这里我们创建ssh-rsa密匙。
在command line 中输入以下指令:``ssh-****** -t rsa``去创建一个ssh-rsa密匙。如果你并不需要为你的密匙创建密码和修改名字,那么就一路回车就OK,如果你需要,请您自行Google翻译,因为只是英文问题。
$ ssh-****** -t rsaGenerating public/private rsa key pair.//您可以根据括号中的路径来判断你的.ssh文件放在了什么地方Enter file in which to save the key (/c/Users/Liang Guan Quan/.ssh/id_rsa):

https://github.com/settings/keys 这个地址中去添加一个新的SSH key,然后把你的xx.pub文件下的内容文本都复制到Key文本域中,然后就可以提交了。 

添加完成之后 我们用ssh aaa@qq.com 命令来连通一下github,如果你在response里面看到了你github账号名,那么就说明配置成功了。let's enjoy github ;)

最后,是忽略文件

在本地仓库根目录创建 .gitignore 文件。Win7 下不能直接创建,可以创建 ".gitignore." 文件,后面的标点自动被忽略;

/.idea          // 过滤指定文件夹
/fd/*           // 忽略根目录下的 /fd/ 目录的全部内容;
*.iml           // 过滤指定的所有文件
!.gitignore     // 不忽略该文件