/source/application/controller ( visible )
/source/application/models ( visible )
/source/application/views ( visible )
/source/framework ( not visible )
can we somehow do like this at github or in any git sites ? svn ? or maybe other SCM ?
...
i have an open source ruby project on github, where my master branch represents what has been released, and my dev branch represents what will be released next.
the master branch is ~ 80+ commits behind the dev branch, and the dev branch contains fairly significant architectural changes.
a contributor has sent me a pull request for cha...
I'm setting up my first Hudson + Git project (previously done many with Hudson + SVN). I expected the clone stage to be slow, as our repository is quite large, but subsequent builds where a fetch + merge is being used are just as long. The following options are enabled:
Merge before build
Clean after checkout
I am not doing a "Wipe o...
I made a mistake when I first committed. I'm on another person's computer and pushed a version with their user.name instead of mine. How can I delete this?
...
i use github and have successfully added and synched files on my laptop in the past.
as of recent i started getting "PuTTY Fatal Error: Disconnected: No supported authentication methods available" after running:
git pull origin master (or push)
however
ssh [email protected] returns the correct response:
ERROR: Hi username! You've succe...
I have a repository that contains the software in branch master and its homepage in branch gh-pages. The project contains an examples directory with source files that should be contained in the master branch. The homepage should contain the compiled examples and possibly also the source files. How can I share the examples (that depend on...
I am using Hudson to build my projects periodically. I want Hudson to format my code (using Jalopy) and then check-in the changes to github.com.
I already have Jalopy configured the way I like, I just need to configure the scm plugin to check-in the changes.
...
I see that there is a subversion plugin for npp, but I didn't see anything similar for github.
Is there one?
And if not, what strategy could you offer to using the two? (In case I see the answer is no, I will turn this question into a community wiki)
...
ssh: Could not resolve hostname C: hostname nor servname provided, or not known
fatal: The remote end hung up unexpectedly ?
ive set up a git repo useing --bare ( i even dont know what it mean )
im following the http://stackoverflow.com/questions/1960799/using-gitdropbox-together-effectively and when i do
$ git clone C:\Users\DAMS\Docu...
Hi there everybody. I would like to know if something like Drydrop, but using a Mercurial repository instead of a Git one, exists.
(I know that I could just mirror my original repository to Github or some other Git hosting service, I only wanted to be sure there was not a more direct alternative).
Thank you.
...
I've just cloned a repository, made some changes and now I'd like to send the author my patch. What should I do?
I cloned from github anonymously.
git push origin
?
...
is there a way to add all files no matter what you do to them whether it be deleted, untracked, etc? like for a commit. i just dont want to have to git add or git rm all my files every time i commit, especially when im working on a large product.
thanks.
...
I cloned a repo using its GitHub read-only URL onto my team's staging server. I made some changes there to the config files.
I'd like to change the repo clone on the server to be read-write, so that I can 'git push' the config file changes.
How do I do this?
Or is there a better 'best practice' way to deal with this scenario th...
Hi all,
I am unable to clone my repository via Https:
$ git clone https://github.com/walterjwhite/project.configuration.git
Initialized empty Git repository in ./project.configuration/.git/
error: Failed connect to github.com:443; Connection refused while accessing http
s://github.com/walterjwhite/project.configuration.git/info/refs
f...
I have a git repository with hundreds of commits. When I clone it, I get a lot of output like this:
...
got ac6d99d2762efe0fcf2b78656e336c25ca8428d5
got ef98d4e93c680384f8174b95e431627b29a56580
got 4d6e1231e0f6265458a8e6ab47a44bfcd357486b
got 7e3d3a2fc10d0dfe00e87e8eed4a3fc1efa5eaed
walk b43c1e0062b72d3ab416ad209e94e13a6c71815d
...
Thi...
Hi,
I am trying to deploy my rails application for the first time.
Server is running Ubuntu 10.4 server (64bit)
Local machine is running Windows XP.
Repository is at github
I have successfully run
cap deploy:setup
but when I run
cap deploy:cold
I get the following error:
D:\Rails\rails_apps\fx>cap deploy:cold
You are running ...
I'm in the process of creating my first rails plugin and am finding managing version control of the plugin and testing app rather annoying.
Here's my problem:
To actually test my plugin in action I need to run it within a test application (which is basically just a scaffold app where I install the plugin)
When I'm making changes to th...
Hello all,
I've been using Git for a while now, and I recently started using it to tag my releases so that I could more easily keep track of changes and be able to see which version each of our clients are running (unfortunately the code currently mandates that each client have their own copy of the PHP site; I'm changing this, but it's...
I've read that RubyGems is de-facto hosting for gems.
I host all my Rails projects on GitHub.
So my questions are:
Are there any reasons for hosting my gems on GitHub and not RubyGems?
Does RubyGems have private repositories like GitHub?
I've read that jeweler is nice for creating gem skeleton. On their webpage it sounds like it uplo...
We have just started using Git and GitHub at work on windows and whenever git is unable to access a file on checkout it will mark the files as deleted and lists them as changed but not updated. i.e.
error: git checkout-index: unable to create file XXXXX (Permission denied)
Checking out files: 100% (876/876), done.
D XXXXX
Switched...