01前段一条龙-git仓库的建立

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

git仓库的建立 

  1. git项目建立
  2. git权限配置
  3. gitignore的配置

目录结构设计

    

图1

01前段一条龙-git仓库的建立_第1张图片

图2

01前段一条龙-git仓库的建立_第2张图片

图3

  1. https://gitee.com创建项目
  2. 配置ssh密钥(参见码云平台帮助文档)
  3. git init 初始化本地项目
  4. git remote add origin [email protected]:dundunsama/dundun-fe.git(ssh地址)
  5. git pull origin mater
  6. git add .
  7. git commit -am ‘test’提交并注释)
  8. git push(上传远程服务器)
  9. vim .gitignore(创建gitignore文件,图3)
  10. mkdir src  (新建图1文件结构)

01前段一条龙-git仓库的建立_第3张图片

 

转载于:https://my.oschina.net/u/2562023/blog/1563285

你可能感兴趣的:(git,运维,python)