multiple accounts for multiple repositories.
2. disable credential helper
git config --local credential.helper ""
or modify your .git/config in project directory
3.1 you can set manually in your ~/project/.git/config
cd ~yourProject
vi .git/config
https://${GIT_USER_NAME}:${GIT_ACCESS_TOKEN}@${REPOSITORY_URL}
e.g
https://someUser:$1234@github.com/scuzzlebuzzle/ol3-1.git
3.2 or set remote URL below command
git remote set-url origin https://${GIT_USER_NAME}:${GIT_ACCESS_TOKEN}@${REPOSITORY_URL}
e.g
git remote set-url origin https://${GIT_USER_NAME}:${GIT_ACCESS_TOKEN}@github.com/scuzzlebuzzle/ol3-1.git