-
克隆库
- 首先要远程仓库,克隆到您的本地系统下列命令。$ git clone https://github.com/youcl/firstrepo.git Cloning into 'firstrepo'... remote: Counting objects: 3, done. remote: Total 3 (delta 0), reused 0 (delta 0), pack-reused 0 Unpacking objects: 100% (3/3), done. Checking connectivity... done.
更改库的URL。 -
添加您的身份
- 现在设置你的身份克隆的本地系统上新的存储库。导航到本地目录,并使用下面的命令$ cd firstrepo/ $ git config --local user.email "youremail@example.com" $ git config --local user.name "Your Name Here"
-
创建项目文件
- 现在,在新克隆的目录,从现有的项目,创建一些文件或复制它们。$ touch file1.txt $ cp -r ~/oldProject/* .
-
将文件添加到Git
- 现在,新创建或复制文件添加到您的Git仓库。 添加单个文件: -$ git add file1.txt
添加所有文件: -$ git add -A
-
提交修改
- 在成功添加新文件到你的本地仓库。现在提交更改。这个Commit只在本地资源库文件。 提交单个文件$ git commit file1.txt -m "New File Commit"
提交所有文件$ git commit -a -m "All Files Commit"
-
把你的改变推送到远程
- 现在,使用下面的命令来推送到远程Git仓库更改。这将把更改的文件上传到远程存储库中。$ git push origin master Username for 'https://github.com': my_git_user_name Password for 'https://my_git_user_name@github.com': Counting objects: 4, done. Delta compression using up to 2 threads. Compressing objects: 100% (2/2), done. Writing objects: 100% (3/3), 278 bytes | 0 bytes/s, done. Total 3 (delta 0), reused 0 (delta 0) To https://github.com/tecadmin/firstrepo.git 2913fe6..cc8ebe7 master -> master
如何克隆Git的仓库和添加新文件
分享到: