我应经将代码分享至GitHub上了,连接地址:https://github.com/Tsir/ClassTest
使用GitHub的心得体会:
初次使用:
git中重要的概念:
- 工作目录(working directory):在工作目录中修改文件,修改后的文件状态是modified,新添加的文件是untracked,通过git add命令将文件保存到staging area中;
- staging area:保存下次即将提交到git repository中文件的snapshot。文件状态是staged,通过git commit命令提交文件到git repository中;
- git repository:本地仓库。通过git push命令更新远端服务器仓库,通过git pull命令更新本地仓库。
- ?
开始使用git:
- 在本机上安装git,http://progit.org/book/
- 使用github充当远端服务器,托管本地代码:www.github.com
- 在github上注册好帐号,创建一个仓库,就可以将本地仓库托管上去了
- 剩下的就是从原理上学习git,熟练掌握git的常用命令,不懂的就git --help。
- ?
git常用命令:
- git config :配置git
- git add:更新working directory中的文件至staging area。git add .更新所有的文件
- git commit:提交staging area中的文件至git repository中。git commit -m ‘message‘
- git status:查看状态
- git diff:查看改动情况
- git remote:查看远端服务器别名,加上-v显示url信息
- git remote add server_url local-alias:添加远端服务器
- git clone project_url local_alias:拷贝项目到本机中
- git push server_url/local-alias:更新远端服务器仓库
- git pull server_url/local-alias:更新本地服务器仓库
- ?
?推送项目的github的大致步骤如下:
?1、在本地创建一个项目仓库,可以放些基本的项目文件
?2、cd至该目录下
?3、git init 执行git初始化,完成对该项目的版本监控
?4、git add 将该库中的内容加到暂存区
?5、git commit 完成项目快照(与svn的提交有所区别)
?6、git remote add 随便一个单词 [email protected]:TSir/名称.giit (完成于github的通信,前面几个步骤基本是在本地操作的。)
?7、git push 随便一个单词 master(分支名字)
?--------当需要修改项目内容的时候----------------
?1、git clone GitRead-Only (将最新版克隆到指定的路径中)
?2、修改
?3、git add .
?4、git commit -m"修改描述"(必须要加)
?5、git remote add (通信)
?6、git push .... master
使用GitHub后我知道了对代码的专业托管是多么重要了。?
时间: 2024-11-17 22:47:27