Storing password in git?

To store passwords in GIT you need to be able to encrypt and decrypt the password. You can do that using GPG tool. Both tools are available for a variety of platforms. See the instruction below on how to install the tooling and at the very end how to use them to store...

How to push git project to GitHub repository?

To push project to GitHub Go to github.comCreate new repositoryCopy repository urlNow run of of the fallowing git commands: Create a new repository on the command line echo “# PROJECTNAME” >> README.md git init git add README.md git commit -m “first...

GIT – Merge Conflicts – explained

No one likes conflits. But we should not be scared of resolving them. Git provide us wit a merging tool which will be triggered if there are changes on same lines form different sources. Or when on line was deleted in first src and added in another. Marge conflict can...

GIT – Pull Requests

Pull request are based on branches not on individual commits. To create a pull request we need to first create a branch then commit changes and then we are ready to create a pull request. Commit without Pull Request: What if you would like to expose your code for a...

Use GIT – The right way

You can not write a code without some version control system. Today we will talk about git. It is very common and well documented system. However the fact that we use the git does not mean that we use it in a proper way. Like with everything there are some good...