还没完成
安装
sudo apt-get install git
配置
git config --global user.name "name"
git config --global user.email "email"
本地仓库
在本地目标文件夹git init
,创建本地仓库
初步使用
查看状态 git status
提交到缓存区 git add file
提交到仓库 git commit -m '注释'
查看缓存区文件修改 git diff file
查看历史记录 git log
版本回退 git reset --hard HEAD^/HEAD^^/HEAD~number/版本号
丢弃修改git checkout -- file
本地Git仓库与远程Github仓库传输通过SSH加密,因此我们需要设置SSH Key
打开控制台输入以下命令
ssh-keygen -t rsa -C "youremail@example.com"
会生成两个文件 私钥id_rsa
和 公钥id_rsa.pub
windows位置 C:\Users\username\.ssh
linux位置 ~/.ssh
然后我们在Github -- setting -- SSH and GPG keys 里 New SSH key 把公钥写进去
在Github上新建一个repository,获取URL
本地仓库关联远程
把已有的本地仓库与之关联git remote add origin URL
创建本地分支
git branch test #创建名为test的分支
git add xx
git commit -m "test"
git branch #只有commit后才会显示分支
本地分支推送远程分支
已有remote_branch且已关联local_branch,且本地已经切换到local_branch
git push
已有remote_branch但未关联本local_branch,且本地已经切换到local_branch
git push -u origin/remote_branch
远程没有remote_branch分支,本地已经切换到local_branch
git push origin local_branch:remote_branch
在当前目录新建一个Git代码库
git init
新建一个目录,将其初始化为Git代码库
git init [project-name] # 下载一个项目和它的整个代码历史
git clone [url]
显示当前的Git配置
git config --list
编辑Git配置文件
git config -e [--global] # 设置提交代码时的用户信息
git config [--global] user.name "[name]"
git config [--global] user.email "[email address]"
#提交
git add [file1] [file2] ... #提交文件到暂存区
git add [dir] # 添加指定目录到暂存区,包括子目录
git add . # 添加当前目录的所有文件到暂存区
git add -p # 添加每个变化前,都会要求确认 # 对于同一个文件的多处变化,可以实现分次提交
#删除
git rm --cached [file] #删除工作区文件,并且将这次删除放入暂存区
git mv [file-original] [file-renamed]# 改名文件,并且将这个改名放入暂存区
提交暂存区到仓库区
git commit -m [message]
git commit [file1] [file2] ... -m [message] # 提交暂存区的指定文件到仓库区
git commit -a # 提交工作区自上次commit之后的变化,直接到仓库区(省略git add)
git commit -v # 提交时显示所有diff信息
git commit --amend -m [message] # 使用一次新的commit,替代上一次提交,如果代码没有任何新变化,则用来改写上一次commit的提交信息
git commit --amend [file1] [file2] ...# 重做上一次commit,并包括指定文件的新变化
#列出
git branch #列出所有本地分支
git branch -r #列出所有远程分支
git branch -a #列出所有本地分支和远程分支
#创建
git branch [branch-name] #新建一个分支,但依然停留在当前分支
git checkout -b [branch] # 新建一个分支,并切换到该分支
git branch [branch] [commit] # 新建一个分支,指向指定commit
git branch --track [branch] [remote-branch] # 新建一个分支,与指定的远程分支建立追踪关系
#切换
git checkout [branch-name] # 切换到指定分支,并更新工作区
git checkout - # 切换到上一个分支
git branch --set-upstream [branch] [remote-branch] # 建立追踪关系,在现有分支与指定的远程分支之间
#合并
git merge [branch] # 合并指定分支到当前分支
git cherry-pick [commit] # 选择一个commit,合并进当前分支
#删除
git branch -d [branch-name] # 删除分支
git push origin --delete [branch-name]# 删除远程分支
git branch -dr [remote/branch]
git tag # 列出所有tag
git tag [tag] # 新建一个tag在当前commit
git tag [tag] [commit] # 新建一个tag在指定commit
git tag -d [tag] # 删除本地tag
git push origin :refs/tags/[tagName] # 删除远程tag
git show [tag] # 查看tag信息
git push [remote] [tag] # 提交指定tag
git push [remote] --tags# 提交所有tag
git checkout -b [branch] [tag]# 新建一个分支,指向某个tag
WSL2-GCM
git config --global credential.helper "/mnt/d/Git/mingw64/libexec/git-core/git-credential-manager-core.exe"
WSL2 git无法pull
问题:gnutls_handshake() failed: Error in the pull function. fatal: unable to access
原因:由系统的 git 默认使用的 libcurl4-gnutls-dev 造成
解决方法:使用openssl替代gnutls重新编译git
sudo apt-get update
sudo apt-get install build-essential fakeroot dpkg-dev libcurl4-openssl-dev
sudo apt-get build-dep git
mkdir ~/git-openssl
cd ~/gitopenssl
apt-get source git
cd git-2.25.1/
vim debian/control #将"Build-Depens"里的libcurl4-gnutls-dev 替换为 libcurl4-openssl-dev
vim debian/rules #删除TEST = test这行,减少编译时间
sudo dpkg-buildpackage -rfakeroot -b -uc -us#add "-uc -us to avoid error'No secret key' ""
sudo dpkg -i ../git_2.25.1-1ubuntu3.4_amd64.deb
如果还不行,在~/.bashrc
中加入
export hostip=$(cat /etc/resolv.conf |grep -oP '(?<=nameserver\ ).*')
git config --global http.proxy http://${hostip}:7890
git config --global https.proxy https://${hostip}:7890