the first time meeting git

第一次使用Github和Git提交完整项目步骤

项目中难免会使用git,这里记录一下我第一次使用Git和Github的步骤:

  • 第一步: 在github上登录进去,然后:-->+ -->New repository
the first time meeting git_第1张图片
001new repository.png
  • 第二步:创建新的仓库名点击 创建按钮
the first time meeting git_第2张图片
002创建仓库
  • 第三步:复制url在本地命令行打开,git clone {url}
the first time meeting git_第3张图片
复制url.png
the first time meeting git_第4张图片
git Clone.png
  • 第四步:在本地文件夹找到下载的git文件目录。添加新的文件编辑文件。
the first time meeting git_第5张图片
添加文件.png
  • 第五步:回到命令行:
    添加所有文件使用:git add .
    查看git状态:git status
    提交修改: git commit -m "first commit,Hello Git"
    向远程服务器提交:git push
    此时:输入Username,即你的Github的用户名
    回车后再输入密码然后回车,成功提交。
    然后看Github上能看见自己提交的项目文件。
the first time meeting git_第6张图片
Git Command01.png
the first time meeting git_第7张图片
Git Push.png
the first time meeting git_第8张图片
成功提交Github项目.png
  • 注意:前提是在Windows上已经安装好了Git和配置好了Git的代理。然后需要有个人的github账号。

参考文章:

  • Github入门级使用攻略(续)

你可能感兴趣的:(the first time meeting git)