We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
初始化,将当前目录初始化为Git仓库。会添加一个.git文件。
工作区——>暂存区
添加一个文件到暂存区,如 $ git add README.md
添加所有的文件、文件夹到暂存区。
(注:如果文件没有做出任何修改,则默认不会添加任何文件)
暂存区——>本地仓库
将add的文件提交到git仓库。 “first commit”为提示信息(备注)。
比如:$ git remote add origin https://github.com/Ogurimuio/rockClass-OOAD.git
本地仓库——>远程仓库
把master中的文件push到远程仓库中。
完成!
$ git config --global user.name "Your Name" $ git config --global user.email "[email protected]"
(add和commit过程,本地仓库。)
可以追踪add文件的提交状态。(工作区是否还有文件)
(若为空,则说明没有文件需要提交到git仓库/文件都已提交到git仓库)
更详细:
https://www.cnblogs.com/linziwei/p/7792156.html
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Git Bash的使用
第一步
$ git init
初始化,将当前目录初始化为Git仓库。会添加一个.git文件。
第二步
工作区——>暂存区
$ git add 文件名
添加一个文件到暂存区,如 $ git add README.md
$ git add .
添加所有的文件、文件夹到暂存区。
(注:如果文件没有做出任何修改,则默认不会添加任何文件)
第三步
暂存区——>本地仓库
$ git commit -m "first commit"
将add的文件提交到git仓库。 “first commit”为提示信息(备注)。
第四步
$ git remote add origin 远程仓库位置(网址,注意有后缀.git)
比如:$ git remote add origin https://github.com/Ogurimuio/rockClass-OOAD.git
第五步
本地仓库——>远程仓库
$ git push -u origin master
把master中的文件push到远程仓库中。
完成!
其他的相关命令
配置本机用户名和邮箱地址
本地仓库
(add和commit过程,本地仓库。)
就是电脑里能看到的目录,比如上面创建的C:\Android\git-repositories\new*repository*1文件夹就是一个工作区。
工作区中有一个隐藏目录.git,就是Git的版本库,版本库里存放了很多的东西,其中最重要的就是state(或者叫index)的暂存区,
还有Git为我们自动创建的第一个分支master,以及指向master的一个指针叫HEAD。
$ git status
可以追踪add文件的提交状态。(工作区是否还有文件)
(若为空,则说明没有文件需要提交到git仓库/文件都已提交到git仓库)
更详细:
https://www.cnblogs.com/linziwei/p/7792156.html
The text was updated successfully, but these errors were encountered: