Git全局设置 用户和邮箱:
git config --global user.name "突破"
git config --global user.email "oncwnuKdGqHqV1PtHBMUvSVoKHAc@git.weixin.qq.com"
仅对当前仓库有效:
git config --local user.email "你的名字"
git config --local user.email "你的邮箱"
git config命令查看用户名,邮箱:
git config user.name
git config user.email
创建一个新的版本库
git clone https://git.weixin.qq.com/jhsonx/vs.git cd vs
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
现有的文件夹或Git版本库
cd existing_folder
git init
git remote add origin https://git.weixin.qq.com/jhsonx/vs.git git add .
git commit
git push -u origin master
git修改远程仓库地址
方法有三种:
1.修改命令
git remote origin set-url [url]
2.先删后加(这种操作不会保持历史记录)
git remote rm origin
git remote add origin [url]
3.直接修改config文件(打开.git文件夹找到config文件,替换远程地址)
创建并切换分支:
Git checkout -b 新分支名
清除刚刚add提交的文件:
1、git rm -r --cached +文件名 ->这个命令不会删除物理文件,只是将已经add进缓存的文件删除。
2、git rm --f +文件路名 ->这个命令不仅将文件从缓存中删除,还会将物理文件删除,所以使用这个命令要谨慎。
3、若删除已经添加缓存的某一个目录下所有文件的话需要添加一个参数 -r
git rm -r --cached 文件名