首先进入需要上传的文件夹,鼠标右键点击Git Bash Here
#输入用户名、邮箱
git config --global user.name "Your Name"
git config --global user.email "xxx@qq.com"
//查看设置
git config --list
ssh-keygen -t rsa -C "xxx@qq.com"
生成密钥的位置在:
C:\Users\Administrator\.ssh
打开 id_rsa.pub,复制密钥,粘贴到下图中,点击增加密钥。
当你出现报错:
ssh: Could not resolve hostname xxx.com: Name or service not known
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
解决:
在C:\Windows\System32\drivers\etc中,配置hosts文件
右击hosts
文件,并以记事本格式打开。然后在文件最后一行添加如下内容:
xxx.xxx.xxx github.com
输入git init,初始化git相关配置文件
git init
输入git remote add origin *你的远程仓库地址*,设置本地与远程仓库的链接
git remote add origin http://gitlabxxxxx.git
如果不设置会出现:
fatal: 'origin' does not appear to be a git repository fatal: Could not read from remote repository.
输入git pull origin master,将远程仓库进行下拉,获取同步
git pull origin master
输入git add . ,将所有文件添加
git add .
输入git commit -m “add new file”,提交代码
git commit -m “add new file”
9、提交暂存文件到指定分支
输入git push origin master,将代码上传至远程仓库的master节点
git push origin master
基本语法是:
git commit --author=“Author Name email@address.com”
这会将该commit的author信息设置为指定的名字和邮箱。然后在git push时,这个commit的author信息也会一起被推送到remote仓库。
例如:
git commit --author=“张三 zhangsan@example.com” -m “commit message”
push时author信息也会带上
git push origin master
如果要修改最近的commit的author信息,可以使用amend选项:
git commit --amend --author=“李四 lisi@example.com” --no-edit
这会修改最近一次commit的author信息,而不修改commit message。
例如
.gitignore
/pycache
model/
ptuning-v2/*
text_model/*
txt_files/*
XLGPT2/knowledge_base/*
XLGPT2/logs/*
*.pyc
.gitignore 文件列出了一些规则,用来忽略版本控制中不需要的文件或目录。具体包含以下几个规则: