github - Git pull enforce authentication -
i trying learn basics of github. want enforce authentication whenever git pull request made. possible in public repository?
this public test repository https://github.com/santhanarajagopalan/jenkintest
when try clone in machine using url https://github.com/santhanarajagopalan/jenkintest.git
it doesn't ask credentials when pull.
am missing configuration or git doesn't prompt password when public repository?
when execute git pull
locally, you're affecting copy of repository on machine, not copy on github's servers. github require authentication write copy of repository (either using git push
locally or merging pull request in web interface).
Comments
Post a Comment