Damn1t
for you I bleed myself dry
FRIENDS
baidu

git基本使用

2019-04-24 git

git基本使用

利用git上传文件

在GitHub上新建respository
复制git地址到本地想要上传的项目文件中,将项目文件复制到新建的文件中

git clone [url]

将文件添加进respository中:git add .
添加分支信息:git commit -m "自定义信息"
上传:git push -u origin master

Author: damn1t

Link: http://microvorld.com/2019/04/24/git相关/git使用/

Copyright: All articles in this blog are licensed under CC BY-NC-SA 3.0 unless stating additionally.

< PreviousPost
python常见问题
NextPost >
plaidctf2019
CATALOG
  1. 1. git基本使用
    1. 1.1. 利用git上传文件