码迷,mamicode.com
首页 > 其他好文 > 详细

Git创建本地仓库并推送至远程仓库

时间:2020-03-20 09:23:44      阅读:65      评论:0      收藏:0      [点我收藏+]

标签:file   文件   删除   set   alias   str   pst   add   查看   

1、创建本地仓库

$ git init    # 初始化一个git仓库,增加.git目录

2、把文件添加到暂存区

$ git add file
$ git add dir/*
$ git status # 查看文件状态

3、若误提交,删除暂存区文件

$ git rm --cache file

4、将暂存区文件提交到工作区

$ git commit -m "注释"

5、添加远程仓库(远程仓库需要先创建)

$ git remote add origin https://9.110.187.100/test/scripts.git    # 远程仓库地址 将当前仓库与远程仓库关联,且远程仓库alias为origin
$ git remote # 查看本地仓库关联的远程仓库

6、将本项目推送到远程仓库

$ git push origin https://9.110.187.100/test/scripts.git
或
$ git push --set-upstream origin master

7、拉取远程仓库

$ git clone https://9.110.187.100/test/scripts.git

Git创建本地仓库并推送至远程仓库

标签:file   文件   删除   set   alias   str   pst   add   查看   

原文地址:https://www.cnblogs.com/shunzi115/p/12529114.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!