DependencyProperty Tutorial
How to Set up Git Develop environment.
-
install the Git SoftWare from here
-
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.
- 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: