本文章将带领大家探索Git的奥秘

下载Git

在使用Git之前,我们要下载Git的插件来配合Git使用
下载地址:

https://git-scm.com/

Git语法使用

仓库文件下载拷贝

git clone

创建仓库

git init

查看当前仓库情况

git status

添加修改

git add (file) or git add .

查看未提交的修改

git diff

撤销提交操作

git reset

提交自己的身份

git config --global user.name "xxx"
git config --global user.email "xxx@xxx.com"

向git提交内容

git commit -m ""

将本地仓库变为远程仓库

git remote add origin (adress)

忽略提交文件

touch .gitignore  and add files to .gitignore

不再追踪某个文件

git rm --cached (file)

添加分支

git branch (name)

切换分支

git  checkout (name)

合并分支

git merge (name)

列出本地分支

git branch -a

删除分支

git branch -d (name)  or -D(Mandatory deletion)

设置本地分支追踪远程分支

git push --set-upstream
最后修改:2022 年 02 月 14 日 10 : 27 PM
如果觉得我的文章对你有用,请随意赞赏
  • 本文作者:雨落倾城
  • 本文链接:https://yuluoqc.xyz/2020/03/04/13.html
  • 版权声明:本博客所有文章除特别声明外,均默认采用 CC BY-NC-SA 4.0 许可协议。
  • # 商业转载请联系作者获得授权,非商业转载请注明出处
    # 协议(License):署名-非商业性使用-相同方式共享 4.0 国际 (CC BY-NC-SA 4.0)
    # For commercial use, please contact the author for authorization. For non-commercial use, please indicate the source.