Pushing to Git returning Error Code 403 fatal: HTTP request failed

I just got the same problem and just figured out what’s cause. Github seems only supports ssh way to read&write the repo, although https way also displayed ‘Read&Write’. So you need to change your repo config on your PC to ssh way: edit .git/config file under your repo directory find url=entry under section [remote “origin”] change it from url=https://[email protected]/derekerdmann/lunch_call.git to [email protected]/derekerdmann/lunch_call.git. that … Read more

How to upload folders on GitHub

This is Web GUI of a GitHub repository: Drag and drop your folder to the above area. When you upload too much folder/files, GitHub will notice you: Yowza, that’s a lot of files. Try again with fewer than 100 files. and add commit message And press button Commit changes is the last step.

Is it safe to download code from GitHub?

As with anything you download over the internet, there could be malicious stuff when you download anything, some antivirus quickscan keep novices happy, most do automatically nowadays as people use the files. When you do compile it and run it, well, it is assumed you KNOW what the program is when you compile you will … Read more

Untrack files from git temporarily

git update-index should do what you want This will tell git you want to start ignoring the changes to the filegit update-index –assume-unchanged path/to/file When you want to start keeping track againgit update-index –no-assume-unchanged path/to/file Github Documentation: update-index

Git error: “Please make sure you have the correct access rights and the repository exists”

I am using TortoiseGit on Windows. When I am trying to Clone from the context menu of the standard Windows Explorer, I get this error: Please make sure you have the correct access rights and the repository exists More precisely, the snapshot of terminal is the following: git.exe clone –progress -v “git@arobotdev:\git\AlfaRobot.git” “C:\Work\AlfaRobot” Cloning into … Read more