Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 714 results for
git
- Page 1
Re: Are their any alternatives to github?
Programming
Software Development
3 Weeks Ago
by Dani
The only one I know about is Bitbucket. What is your use case? Are you looking to host public or private
Git
repositories?
Re: How would we poison AI web crawls?
Hardware and Software
Information Security
2 Months Ago
by rproffitt
… AI poison—iocaine generates garbage rather than slowing crawlers. đź”— https://
git
.madhouse-project.org/algernon/iocaine đź”» Nepenthes A tarpit designed to…
Re: Key Tools and Tips for Efficient Web Development
Programming
Web Development
2 Months Ago
by simplixi
… with everything you need to build a website. **Version Control** *
Git
& GitHub: These are must-haves. They help you keep…
Re: How secure is Github?
Programming
Software Development
1 Month Ago
by Salem
… codebase? Every contributor has a complete copy of the entire
git
repo. So even if you lost everything, you can sync…
Re: How secure is Github?
Programming
Software Development
1 Month Ago
by Dani
… codebase? Every contributor has a complete copy of the entire
git
repo. So even if you lost everything, you can sync…
Re: How secure is Github?
Programming
Software Development
1 Month Ago
by pritaeas
No sensitive info in any CVS. If I had a codebase such as DW, I'd store it in a local
git
store, synced to another machine of mine. No cloud.
Re: How secure is Github?
Programming
Software Development
1 Month Ago
by Salem
… "just me", then password protected tarballs of your `.
git
` directory, uploaded to one of the more trustworthy sites might…
Re: git from command line
Programming
Web Development
8 Years Ago
by Dani
Git
is designed for teams to work on the same codebase, so it's designed to be checked out from multiple places. In cases where the code is modified from multiple sources, you can merge when doing a commit.
Git: How To
Programming
Software Development
12 Years Ago
by myk45
…very hard for developing software. In very simple words,
Git
is one of the many tools that provide this …systematic approach. 2) **How do I start using
Git
?**
Git
is mainly a command-line based tool. Howvever, there are…be something like https://github.com/Daniweb/Dynamic-Array-Library.
git
Now, place this in the "Repository to clone…
Git system help
Programming
Software Development
9 Years Ago
by nitin1
Hi, I am learning
Git
system these days. I have made a… in ubuntu and in terminal did this: 1.
git
init 2. then made a file testfile1.txt 3…. then made a branch using "
git
branch newbranch" 4. then checkout to this branch…I switched again to newbranch and "
git
add ." --> "
git
commit" then again i switched to…
Re: Git system help
Programming
Software Development
9 Years Ago
by sepp2k
…. Untracked files are not affected by anything you do with
git
(like switching branches). One way of looking at it is… branch you were in because it was completely independent from
git
. Once you added the file, it became tied to…
git
and now existed in some branches only, so its existence …
Re: Git system help
Programming
Software Development
9 Years Ago
by sepp2k
… specific version of your files. The repository (i.e. the `.
git
` folder) contains a complete history which keeps track of all… with branches and everything. > I know there is one .
git
hidden folder. I checked into that. There is no copy…; Do I have two copies of the same file in
git
system?(one i am editing and one i over-write…
Re: Git system help
Programming
Software Development
9 Years Ago
by nitin1
…? What is need of committing? I know there is one .
git
hidden folder. I checked into that. There is no copy…? Do I have two copies of the same file in
git
system?(one i am editing and one i over-write…
Re: Git: Seeking a Tutorial for Beginners
Community Center
Geeks' Lounge
10 Years Ago
by DavidB
…related questions. I seem to be okay working with
GIT
locally. Now I'd like to also host projects…C++ source code file has been commited locally:
git
init
git
add
git
commit A repository on GitHub has been created: https….com/dcb2015/Quadratic-Equation-Solver.
git
GIT
confirms recognition of this repository when I run '
git
remote -v'. I then …
GIT stash
Programming
Web Development
6 Years Ago
by davy_yg
… commit your changes or stash them before you merge. Aborting
git
did not exit cleanly (exit code 1) (4391 ms @ 16…/07/2018 10.08.12) I should create
git
stash first but do not undetstand how to? I already… read https://
git
-scm.com/docs/
git
-stash Can anyone guide me how to create…
Git: Seeking a Tutorial for Beginners
Community Center
Geeks' Lounge
10 Years Ago
by DavidB
… just getting my feet wet with
Git
and am looking for tutorials for beginners…reading through the book, "Version Control with
Git
" by Jon Loeliger and Matthew McCullough, but… am not finding it suitable for a
Git
virgin. It is written as if the reader… is already familiar with
Git
and wants more in-depth information. Not …
Re: Git: Seeking a Tutorial for Beginners
Community Center
Geeks' Lounge
10 Years Ago
by mike_2000_17
I've always found the Pro
Git
book, freely available online [here](http://
git
-scm.com/book/en/v2), to be very …helpful and definitely good for beginners. The thing with
Git
is that you'll eventually get an epiphany and it… work together. One thing though is that most tutorials on
Git
will at least assume that you are already familiar with…
Re: git from command line
Programming
Web Development
8 Years Ago
by cereal
… a new box then you clone it, so you do:
git
clone url_of_the_repository If the code is already there, but not… updated to the latest version, then you just pull:
git
pull and then you can push the changes. See: * https…
Re: GIT stash
Programming
Web Development
6 Years Ago
by pty
I think you need to spend a little time learning
git
before you dive in and start using it.
Git
can be a cruel mistress. To stash your work run `
git
stash`. It says that in the doc you "read". In short, don't pull when your repo has uncommitted changes.
Re: Git: Seeking a Tutorial for Beginners
Community Center
Geeks' Lounge
10 Years Ago
by JasonHippy
… a copy of 'version control with
git
' too. I also have 'pragmatic version control using
git
' by Travis Swicegood. Both are extremely… good references for learning to use
git
. I like both books but IMHO, the 'pragmatic....' book is…
Re: Git: Seeking a Tutorial for Beginners
Community Center
Geeks' Lounge
10 Years Ago
by mike_2000_17
…github has any GUI client. There are GUIs for using
Git
, though. I have always just used command-line tools for… version control (
git
, svn, etc.). I never understood the need for GUIs …real-world situations. For instance, I would assume that any
Git
GUI would default to the "master" branch all…
Re: Git - is it possible?
Programming
Computer Science
10 Years Ago
by fatalaccidents
… wondering what the best way to keep a
git
repository in my Dropbox for my local machine …a clone of.. and then also have the supercomputer
git
repository be a clone of this same Dropbox repo… thing I can do (because I did compile
git
on the HPC) is to use github as …up? To put it concisely - I want a
git
repo in my Dropbox and my local machines and…
Re: Git - is it possible?
Programming
Computer Science
10 Years Ago
by Hiroshe
… Mac and the SC. ie, # Macbook
git
init project cd project
git
init --bare ~/Dropbox
git
push ~/Dropbox master # Now you can make… changes to this project directory, # and when you're done:
git
push ~/Dropbox master # No idea how to get it to…
Re: Git: Seeking a Tutorial for Beginners
Community Center
Geeks' Lounge
10 Years Ago
by iamthwee
… github has any GUI client. There are GUIs for using
Git
, though. Thanks for the correction. Can't say I've…://github.com/ignitedcms/ignitedcms which is pretty big, and the
git
client for mac is just superb. But like I said…
Git - is it possible?
Programming
Computer Science
10 Years Ago
by fatalaccidents
… forum for such a question. I understand the basics of
git
, but I'm still very new. I have used…
git
locally and on github. I was wondering if this was …possible: I want to set up my main
git
repository in my Dropbox, then have the same repository on…
Git and bitbucket
Programming
Software Development
10 Years Ago
by Suzie999
… to use source control for the first time. I installed
git
and added it to visual studio 2010. Made my project… folder a
git
repo, commited it, and pushed it. But all I can… see in my
git
bitbucket remote repo is this. http://s12.postimg.org/4w8flnx31…
git from command line
Programming
Web Development
8 Years Ago
by Violet_82
Hi guys, I'm a
git
first time user, and I followed this guide to set … get it up and running https://
git
-scm.com/documentation. So I'm now using
git
from the console (at the moment…
Git, gitgub and lighthouseproblem
Programming
Computer Science
15 Years Ago
by Alxandr
… of mine using github for code-hosting (and of cause
git
for version controll). Also I'm using lighthouse for bugtracking… shure. If anyone know, please tell me :-) ) I've used
git
for a while now, but only as more of a…
Re: Git - is it possible?
Programming
Computer Science
10 Years Ago
by pritaeas
http://blog.shvetsov.com/2013/04/using-
git
-with-dropbox.html Read the comment here: https://gist.github.com/nvk/2422780 There are a lot more of these to find.
Re: Git - is it possible?
Programming
Computer Science
10 Years Ago
by fatalaccidents
… to be on the super computer and to clone a
git
repository from my dropbox? Really cloning onto the super computer…
1
2
3
12
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC