+[10 years ago]mehworkbut it seems like i should just be able to create an authorization based on my clientid/secret just the same as you described +[10 years ago]Seveasmehwork: it is oauth, I was wrong. +[10 years ago]mehworknp, thanks for clarifing +[10 years ago]mehworkit all makes sense now it hink +[10 years ago]mehworki think i need to have my employer run the curl command to do basic auth to generate an auth token for me, since using the client id/secret doesn't seem to work (although you'd think either one would work)
+[10 years ago]grepperI just did a new release using the web interface, and tags v0.35.2 (and tovid-0.35.2) but "git describe" in master still shows 0.35.0-55-g93b5ffc . Shouldn't it describe the # of commits since 0.35.2 ? +[10 years ago]grepperDo I need to make it an 'annotated' tag? +[10 years ago]foxxx_how do I delete all the files in my master branch? +[10 years ago]arusselI'm trying to do a push from a script. Does git try to read some environment variable for auth ? +[10 years ago]Seveasfoxxx_: git checkout master; git rm -r --cached . (if you also want to delete files from disk, omit the --cached); git commit