-
下载代码
git clone https://xxx.git
会提示输入用户名与密码。
-
添加新文件
切换到要添加的目录下,执行:git add main.cpp
文件所在的目录结构会一并被添加。
如果要添加目录下的所有文件,执行:
git add -A 或 git add .
添加目录及其下所有子目录:
git add App/*
将App目录下的所有子目录及其中的文件都添加进来。添加后可通过:
git status
查看当前已添加的文件列表。
-
提交保存
如果是第一次提交,会提示输入用户信息:git config --global user.email "xxx" git config --global user.name "yyy"
之后执行:
it commit -m "add file"
-
推送到远端
git push origin master
会提示输入用户名及密码。推送时默认使用上述参数,所以可以仅执行:
git push
-
拉取更新
git pull
-
保存用户名与密码
每次推送与更新时,会提示输入用户名与密码。可执行:git config --global credential.helper store
之后执行一次更新:
git pull
提示输入用户名、密码。正确输入之后,信息被存储在.git-credentials文件中。以后再操作时不会再提示。
注: 信息存储是明文,谨防泄露
-
参考链接:
https://www.runoob.com/manual/git-guide/
https://www.runoob.com/w3cnote/git-five-minutes-tutorial.html