Currently I have an entry like this in my .git/config file:
url = https://LarryMartell@github.com/...
When I pull it prompts me for a password. What I want is for it to prompt me for both a username and password so multiple people can pull. If I remove the LarryMartell from the url in the config file I get a 403 Forbidden
Here is my git config file:
[core]
    repositoryformatversion = 0
    filemode = true
    bare = false
    logallrefupdates = true
[remote "origin"]
    fetch = +refs/heads/*:refs/remotes/origin/*
    url = https://LarryMartell@github.com/...
[branch "master"]
    remote = origin
    merge = refs/heads/master
