Git Lab UserGuide

DependencyProperty Tutorial

link

How to Set up Git Develop environment.

  1. install the Git SoftWare from here

  2. Follow these steps to configure the environment.

1. git config --global user.name  "userNameInGitLab"
2. git config --global user.email "userEmailInGitLab"

Genereate ssh key
3. ssh-keygen -t rsa -C "GitLab" -b 4096
then we keep all things default, especially for passPhare, keep it empty.

4. copy the content of public key ~/.ssh/id_rsa.pub to the GitLab.


  1. Quick Start Guide:

Clone an existing project from GitLab

1. git clone gitURL

Add a new file and commit to local repository and server Branch

1. git add file
2. git commit -m "comments"
3. git push origin master

Additional Resources:

  1. link1
  2. link2
posted @ 2017-01-17 17:41  kongshu  阅读(211)  评论(0编辑  收藏  举报