Top "Repository" questions

Can refer to the data store of a version control system containing the whole history of a project, or to an object that transfers data between the business layer of an application and its data store.

How do I push a new local branch to a remote Git repository and track it too?

I want to be able to do the following: Create a local branch based on some other (remote or local) …

git repository git-branch git-push git-remote
How do you clone a Git repository into a specific folder?

Executing the command git clone [email protected]:whatever creates a directory in my current folder named whatever, and drops …

git repository git-clone
How do you push a tag to a remote repository using Git?

I have cloned a remote Git repository to my laptop, then I wanted to add a tag so I ran …

git repository push git-push git-tag
How do I clone a subdirectory only of a Git repository?

I have my Git repository which, at the root, has two sub directories: /finisht /static When this was in SVN, /…

git repository subdirectory git-clone sparse-checkout
Remove a file from a Git repository without deleting it from the local filesystem

My initial commit contained some log files. I've added *log to my .gitignore, and now I want to remove the …

git repository remote-server delete-file git-rm
Download a single folder or directory from a GitHub repo

How can I download only a specific folder or directory from a remote Git repo hosted on GitHub? Say the …

git file github directory repository
How should I deal with "package 'xxx' is not available (for R version x.y.z)" warning?

I tried to install a package, using install.packages("foobarbaz") but received the warning Warning message: package 'foobarbaz' is not …

r installation repository package r-faq
How do you merge two Git repositories?

Consider the following scenario: I have developed a small experimental project A in its own Git repo. It has now …

git merge repository git-subtree
How to upload a project to Github

After checking Upload my project to github I still have no idea how to get a project uploaded to my …

upload github repository git-bash git-gui
Untrack files from git temporarily

I have setup a local git on my machine. When I initialized git, I added pre-compiled libs and binaries. However, …

git github repository