Forum Navigation
You need to log in to create posts and topics.

Basic GIT Commands

Clone Project from remote gitlab server (Note: need access to gitlab )

git clone git@gitlab.company.com:/Product/DevOps/deployment.git

Change Branch to new branch and pull latest updates from different branch

git checkout -b OfflineInstaller release/l2.0.6

delete different branch ( Warning: need to changeĀ  to a different branch with checkout)

git checkout release/l2.0.6
git branch -D My-Branch-I-Want-to-Delete