Search Result for: GIT Category

Articles

GIT Ignore file with specific extension

If you want to ignore a file with a specific extension that is not essential to your project simply add it to the .gitignore
Read More

Git Reset HEAD

Use with caution, once used these commands you will not be able to come back from the
Read More

Deleted files still existing in GIT ?

If you have deleted files and then committed the folder the file is in, and surprised to see that the commit has not taken the delete you have just done? Run this command instead
Read More

Reset the Remote Repo to match your local repo after a bad merge

If you have merged in code from a Fork and wanted to undo the merge. Please follow the following steps. Reset your local repo ( this will rollback the head by 2 commits) git reset
Read More

Git Revert

Revert the changes specified by the fourth last commit in HEAD and create a new commit with the reverted changes. git revert
Read More

Merging a pull request using BitBucket

Used when a developer has pushed some code upstream and wants to merge with yours or the master branch. First, you will be notified that someone has made a pull request. In your
Read More

Making a pull request using BitBucket

This is required if you want to push your code upstream to a master repo. Go to your repo and ‘Create a pull request’ Then make sure you have selected the branch you
Read More

Push updates

git push origin
Read More

Change the remote URL / URI

If you are updating or changing a repository that already has an existing URI, use the following
Read More