Does anyone know of a git repository browser that I can host on my own server similar to github? I really like the github browsing and histrory interface, but my favorite part is the network graph. I'd like to run something like this to see the branches and merges in my own repositories.
...
I recently screwed up my git repo and would like to find out if there is any remedy to it.
My setup is this:
Central repo on github.
Personal repo on github (which is a fork of Central)
+Central is setup as remote (upstream/master)
+Master branch (origin/master)
+Feature branch (origin/feature)
My workflow was like this:
Ne...
I'm looking for some Rails/Facebook functionality that has already been built - as a starting point for my own Facebook-consuming Rails app. The problem is, when I search on Github I find gazoogles of apps that fall into this category and no easy way to distinguish one from the other. Is there a secret to this? Or do you only use Github ...
I am looking for a Java library to incorporate into a demo web app and have looked on github, Google Code and sourceforge. So far, sourceforge seems to have the biggest selection. Are there any other places to look, or is sourceforge going to be my best bet?
...
How can i fork and keep in sync with an google code svn that i dont have write access to,into a github repos. I want to be able to develop own features in my git but also want to sync against the google code svn.to fetch fixes from google code project side.
I know about git-svn and used it before to up and downstream to an svn repos i ha...
Has anybody successfully configured Teamcity to monitor, extract, and build from GitHub?
I can seem to figure how where and how to configure the SSH keys for Teamcity. I have Teamcity running as a system service, under a system account. So where does Teamcity stash its SSH configuration?
EDIT
To get this to work, I needed to stop th...
Out of the blue, I can't push, or clone or pull with git.
I used to push successfully all the time. I don't remember doing anything unusual, but today it just stopped working. (I'm using git-gui on XP.) Whenever I try to push, the program waits for like 4 minutes and then gives me this:
FATAL ERROR: Server unexpectedly closed network c...
Let me start by telling you that I never used anything besides SVN and I'm also a Windows user.
I have a couple of simple projects that are open-source, others are on there way when I'm happy enough to release their source code but either way, I was thinking of using Google Code and SVN to share the source code of my projects instead of...
I just started using git with github. I followed their instructions and ran into errors on the last step. I'm checking in an existing directory that isn't currently source-controlled (project about a week old). Other than that, my use case should be pretty run of the mill.
Here's what's happening:
$ git push origin master
error: src re...
In my remote bare repository the HEAD is pointing to "refs/heads/master" and I want it to point to "refs/heads/other".
I am not able to go to remote repository directory and run git symbolic-ref. Is there any git command to achieve it? Or any other way?
If there is no way, does Github allow to change the HEAD?
Thanks in advance.
...
I just jumped into Git yesterday via Github and am moving away from svn. I created a private repo that I intend to use to keep my personal projects synced between work and home. During the process of creating the remote repo, my local files from work were pushed up. Last night, I was able to pull them down to my laptop at home.
Now I ad...
I have forked a repository on github some time ago, made a small change and pushed the change back to my github fork. The original repository has changed since. I would like to merge the changes from the original repository to my fork.
I am new to both git and github, and I need specific commands how to do it.
...
I've read the guide, which tells you to do the following:
create a .github.com repository
check it out to path/to/repo
cd /path/to/repo
git symbolic-ref HEAD refs/heads/gh-pages
rm .git/index
git clean -fdx
echo "My GitHub Page" > index.html
git add .
git commit -a -m "First pages commit"
git push origin gh-pages
I've done that. And ...
For many companies, their project's source code is very valuable to them -- theft of the source code could be very costly. Keeping source code tightly controlled on a local network is one way to help protect it.
However, there are advantages to hosting source code externally, whether it is simply a subversion or git server hosted on dr...
I have public repository at github.com with 2 branches : "master" and "test".
I created new dir locally and did:
[ ] git clone [email protected]:{username}/{projectname}.git
Then i created new branch named "my_test" with
[ ] git branch my_test
and switched to it.
[ ] git checkout my_test
Then i merged it from my "test" branc...
there are several filters mentioned but not how to use them.
i could not figure out how...
e.g. the pushed: filter.
...
I'm releasing an open-source Rails app on Github (probably MIT license). I also want to maintain a private branch/fork of the project that we will use as part of a pay service.
What is the best way to organize the repo(s) in this scenario? And, how can I keep the projects in sync when I have updates that should go to both?
...
Given the following constraints, how can I use GitHub from Windows and Unix?
All access to the internet is restricted to a proxy
The proxy only allows connections out on port 80 and 443
CONNECT method is only enabled for 443
Proxy Authentication is required (NTLM or Basic)
...
We have a blog that we host on github with Jekyll; it is there : http://blog.superfeedr.com
Ideally, I want it to be at http://superfeedr.com/blog/ because we need to add some AJAX and we need to avoid the "Same Origin Policy" problems.
We use Nginx on our "main" webserver, and I have the following setup :
location /blog/ {
proxy_pa...
Has anyone tried or figured out how to import a gitorious repo into github? I already use github and wanted to see if there was a way to pull from a gitorious repo that I wanted to follow into github.
...