GitHub01——第一次使用GitHub

第一次使用Git


特别注意:
对于首次安装git的机器,一定要首先进行用户账户信息的配置,如下:
git config --global user.name "你的github用户名"
git config --global user.email "你的github邮箱地址"

1、使用 git 之前先添加 SSH key

具体方法参考:GitHub 添加 SSH key 的方法

2、上传文件到 GitHub

运行 git bush,输入:

mkdir test

cd test

git init

touch README

git add README

git commit -m'first commit'

git remote add origin [email protected]:lzjun/test.git

git push -u origin master

然后登陆 GitHub ,查看是不是有刚上传的文件。

补充:
commit 的时候如果发生乱码,可以设置global全局变量:

git config --global i18n.commitencoding utf-8

3、Fork 别人的项目

如果想下载名为username用户的项目,我们需要使用clone命令,假设项目名叫“tools",输入:

git clone [email protected]:username/tools.git

4、上传文件到github

运行git bush,依次输入:

git add xxxx.py

git commit -m '上传/修改文件说明信息'

git push

你可能感兴趣的:(GitHub01——第一次使用GitHub)