谷动谷力

 找回密码
 立即注册
查看: 191|回复: 0
打印 上一主题 下一主题
收起左侧

Git入门 帮助 Visual Studio / TortoiseGit / Eclipse / Xcode 下如何连...

[复制链接]
跳转到指定楼层
楼主
发表于 2024-1-24 15:58:10 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
Git入门 帮助 Visual Studio / TortoiseGit / Eclipse / Xcode 下如何连接gitee如何导入仓库


简易的命令行入门教程

Git 全局设置:
  1. git config --global user.name "your.user.name"
  2. git config --global user.email "your.email@163.com"
复制代码

创建 git 仓库:
  1. mkdir kitspace
  2. cd kitspace
  3. git init
  4. touch README.md
  5. git add README.md
  6. git commit -m "first commit"
  7. git remote add origin https://gitee.com/your/prcjt.git
  8. git push -u origin "master"
复制代码

已有git仓库导入gitee
  1. cd existing_git_repo
  2. git remote add origin https://gitee.com/your/prcjt.git
  3. git push -u origin "master"
复制代码


+10
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|深圳市光明谷科技有限公司|光明谷商城|Sunshine Silicon Corpporation ( 粤ICP备14060730号|Sitemap

GMT+8, 2024-5-9 16:13 , Processed in 0.100620 second(s), 36 queries .

Powered by Discuz! X3.2 Licensed

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表