Tag: GitLab

  • Git Pull Specific Commit Via Commit No

    Git Pull Specific Commit Via Commit No

    In a empty folder. git clone <repository_address> git remote add origin <repository_address> #YOUR_SHA_HERE is like 12eb5133eda7fcf8b86a6cc70a0f8c3afc178263 git fetch origin master YOUR_SHA_HERE git checkout YOUR_SHA_HERE  

  • Update An Already Forked Branch

    Update An Already Forked Branch

    For updating a forked branch on Github or any other git related system. First you need to clone your forked branch on your local machine because there is no any one click updater solution.

  • Git Merge Branch Into Master

    Git Merge Branch Into Master

    Merge branch name “test” into master   git checkout master git pull origin master git merge test git push origin master