首页 > 其他分享 >git初始化项目仓储

git初始化项目仓储

时间:2023-05-12 13:57:13浏览次数:40  
标签:origin 初始化 git -- add 仓储 push

Command line instructions

Git global setup
git config --global user.name "用户名"
git config --global user.email "git账号"
Create a new repository
git clone 服务器仓储地址
cd test
touch README.md
git add README.md
git commit -m "add README"
git push -u origin master
Existing folder
cd existing_folder
git init
git remote add origin 服务器仓储地址
git add .
git commit -m "Initial commit"
git push -u origin master
Existing Git repository
cd existing_repo
git remote add origin 服务器仓储地址
git push -u origin --all
git push -u origin --tags

标签:origin,初始化,git,--,add,仓储,push
From: https://www.cnblogs.com/zjbky/p/17393897.html

相关文章

  • git忽略文件.gitignore
    ##IgnoreVisualStudiotemporaryfiles,buildresults,and##filesgeneratedbypopularVisualStudioadd-ons.#User-specificfiles*.suo*.user*.sln.docstates#Buildresults[Dd]ebug/[Rr]elease/x64/build/[Bb]in/[Oo]bj/#MSTesttestResults[Tt]est[Rr]es......
  • 版本控制工具-Git
    目录问题cloneRepository管理分支查看分支本地创建新的分支切换到新的分支创建+切换分支将新分支推送到github删除本地分支删除github远程分支git提交本地代码到新分支切换到新的分支添加本地需要提交代码提交本地代码push到git仓库问题执行命令时无任何响应:在命令前加上winp......
  • 在C#中使用默认值初始化字符串数组的3种方式
    在本文中,您将学习到新建字符串数组如何设置默认值。数组是可以使用索引访问的相同类型的元素的集合。对于字符串数组,每个元素都是一个字符串值。在C#中创建新的字符串数组时,默认值为null。但是,在某些情况下,您可能希望使用特定的默认值而不是null初始化字符串数组。例如,希望A......
  • Go源码阅读——github.com/medcl/esm —— v0.go
    esm(AnElasticsearchMigrationTool)——v0.gohttps://github.com/medcl/esmrelease:8.7.1通过阅读好的源代码,细致思考,理性分析并借鉴优秀实践经验,提高zuoyang的编程水平,所谓"他山之石,可以攻玉" 该是如此吧。 /*Copyright2016Medcl(mATmedcl.net)Licensedun......
  • 用Visual Studio把代码放到GitLab
    1、点“Git更改”2、点“创建Git仓库……”:3、点“现有远程”,再输入“远程URL”:4、在出现的警告框里选择“是(Y)”:5、输入用户名和Token6、成功推送代码。7、接受源代码管理的文件都又了锁的标志:......
  • Go源码阅读——github.com/medcl/esm —— scroll.go
    esm(AnElasticsearchMigrationTool)——log.gohttps://github.com/medcl/esmrelease:8.7.1通过阅读好的源代码,细致思考,理性分析并借鉴优秀实践经验,提高zuoyang的编程水平,所谓"他山之石,可以攻玉" 该是如此吧。 /*Copyright2016Medcl(mATmedcl.net)Licensedu......
  • Git:安装Git
     下载>>安装>>   下载登录Git官网:https://git-scm.com/点击想要安装的版本  安装1. 点击下一步(Next)2. 选择安装路径3.Git相关的插件、配置,点击下一步(Next)4. 快捷方式配置5. 选择编辑器(默认即可)6.在新的仓库调整初始化分支的名称(不太懂,默认选......
  • 创建Git仓库并使用PyCharm提交
    进入git目录,输入以下命令:sudogitinit--bare仓库名.gitsudochown-R用户名:用户名仓库名.git仓库的URL地址为:用户名@IP:git目录/仓库名.git在PyCharm中右键单击项目文件夹,选择Git->ManageRemotes,添加仓库的URL地址.右键单击项目文件夹,选择Git->Add.选择Co......
  • https://pengchenggang.github.io/vuejsdev-com-github 备份发布
    https://pengchenggang.github.io/vuejsdev-com-github备份发布现在还没有解决的就是开clash,代码提交不上去,只能关了提,但是关了提交,也得赶运气。提交代码体验很差~......
  • Git 同步到新库
    进行git初始化 gitinit将本地代码添加到仓库 gitadd./注意有空格 gitcommit-m“上传仓库时的说明”关联上远程仓库 gitremoteaddoriginhttps://github.com/DavidCuii/react-ts-app.git最后将你的代码上传到Git库......