Git 设置远程仓库 初始化push 图文教程

Git – setting up a remote repository and doing an initial push

There is a great deal of documentation and many posts on Git out there, so this is more of a note to self as I keep forgetting the steps needed to set up a remote repository and doing an initial “push”.

这里记录一下push远程仓库所需要的步骤:

So, firstly setup the remote repository:

首先设置远程仓库:

ssh [email protected]  mkdir my_project.git  cd my_project.git  git init --bare  git update-server-info # If planning to serve via HTTP  exit

On local machine:

本地机器:

cd my_project  git init  git add *  git commit -m "My initial commit message"  git remote add origin [email protected]:my_project.git  git push -u origin master

Done!

完成!

Team members can now clone and track the remote repository using the following:

其他团队成员直接克隆远程仓库内容即可:

git clone [email protected]:my_project.git  cd my_project

Bonus

To have your terminal prompt display what branch you are currently on in green, add the following to your ~/.bash_profile (I have my current directory displayed in cyan):

function git-branch-name {    git symbolic-ref HEAD 2>/dev/null | cut -d"/" -f 3  }  function git-branch-prompt {    local branch=`git-branch-name`    if [ $branch ]; then printf " [%s]" $branch; fi  }  PS1="[email protected]h [33[0;36m]W[33[0m][33[0;32m]$(git-branch-prompt)[33[0m] $ "

腾讯云限时秒杀【点击购买】

搬瓦工,CN2高速线路,1GB带宽,电信联通优化KVM,延迟低,速度快,建站稳定,搬瓦工BandwagonHost VPS优惠码BWH26FXH3HIQ,支持<支付宝> 【点击购买】!

Vultr$3.5日本节点,512M内存/500G流量/1G带宽,电信联通优化,延迟低,速度快【点击购买】!

阿里云香港、新加坡VPS/1核/1G/25G SSD/1T流量/30M带宽/年付¥288【点击购买】

Git 设置远程仓库 初始化push 图文教程

`微信`扫码 加好友

链接到文章: https://gkxyz.com/git-shezhiyuanchengcangku-chushihuapush-tuwenjiaocheng.html

推荐站点

  • 优酷 – 你的热爱 正在热播

    视频服务平台,提供视频播放,视频发布,视频搜索,视频分享

  • 腾讯云 – 产业智变 云启未来

    腾讯云为数百万的企业和开发者提供安全稳定的云计算服务,涵盖云服务器、云数据库、云存储、视频与CDN、域名注册等 […]

  • Vultr

    Vultr Global Cloud Hosting – Brilliantly Fast SSD […]

  • RAKsmart

    主机商介绍:RAKsmart是知名的美国服务器租用商,包括美国站群服务器、美国cn2服务器、香港服务器等热门产 […]

  • 站长工具 – 站长之家

    站长工具是站长的必备工具。经常上站长工具可以了解SEO数据变化。还可以检测网站死链接、蜘蛛访问、HTML格式检 […]

  • 观察者网

    观察者网,致力于荟萃中外思想者精华,鼓励青年学人探索,建中西文化交流平台,为崛起中的精英提供决策参考。

评论已关闭