Pages

Thursday, October 26, 2017

Reminder : GIT config


Some GIT command often used :


git config --global user.email "your_github_email_@email.com"
git config –-global user.name NEWUSER
git config user.name NEWUSER
git remote set-url origin "https://user@git.fr/project/project.git"

git config --unset-all credential.helper (clean user and password)
git config --system --unset-all credential.helper (clean user and password)

No comments:

Post a Comment

How to add internationalization to your android application ?

  Configure your project First, you need to add the following configuration in your file build.gradle (Module : app) : android { ..... andr...