Tag: version control

  • Git Lesson : branch is ahead by x commits

      If Git suddenly popup a warning, “branch is ahead by x commits”. You can do the following Switch to the branch, e.g it’s the Master branch Then, use Git Fetch to update the local copy of a remote branch Git fetch is similar to pull, except it won’t do any merging

  • Git lesson : Branch

    Git lesson : Branch

    What is GIT? Git is… Git is a free & open source, distributed version control system designed to handle everything from small to very large projects with speed and efficiency. Every Git clone is a full-fledged repository with complete history and full revision tracking capabilities, not dependent on network access or a central server. Branching…