Swap “Latest release” on github

I am not aware of any way to do this directly in GitHub. The “latest release” is determined from the timestamps on your tags, not from the semantics of their names. In the past I have solved this problem on my own personal projects by deleting the problematic older tag: git tag -d v0.1.0 git … Read more

How to convert files in GitHub repository to a Gist

First of all, note that Gist doesn’t support directories. To import a repository into a gist follow the next steps: Create a new gist and clone it locally (replace the dummy id with your Gist id): git clone [email protected]:792bxxxxxxxxxxxxxxx9.git cd to that gist directory Pull and merge from your GitHub repository: git pull [email protected]:<user>/<repo>.git Push … Read more

Are there any good workarounds to the GitHub 100MB file size limit for text files?

Clean and Smudge You can use clean and smudge to compress your file. Normally, this isn’t necessary, since git will compress it internally, but since gitHub is acting weird, it may help. The main commands would be like: git config filter.compress.clean gzip git config filter.compress.smudge gzip -d GitHub will see this as a compressed file, … Read more

Git: split pull request into smaller PR’s based upon the new directories in the pull request

is there a way to pull files out of a branch including their commit history into a new branch? You pull a commit, meaning a whole repo into a branch, not just some files. One good option would then be to reset the files you don’t want to their content pre-branch –x–x–x (master) \ y–y–y … Read more

Can I fork another persons repo twice into my own account?

In your case, I would suggest going with submodules. However to answer your exact question, here’s how you should proceed. Start by creating Jeremy/MyShooter and Jeremy/MyRPG on Github. Keep them empty. Clone your origin project on your system, twice, giving it different names $ git clone http://github.com/Bob/CoolFramework MyShooter $ git clone http://github.com/Bob/CoolFramework MyRPG You now … Read more

git-upload-pack not found

I just come across this issue right now, it is caused by permissions, please make sure that you current account has the permissions of git pull and git push,in your case , maybe you create a private repository in Github, and not add this account as Manage Collaborators, then the issue come. Certainly you also … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)