Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
-
py2js33777y@fuhrmie531 I would say terminology wise its wrong, git is not a backup system but I don't see this as worst thing. It can be used for incremental backup and you will also be aware of changes made, so and so depends upon the use case. Also its my personal opinion, I may be wrong
-
Sourcerer537y@py2js i think the Problem was not the the termonology but that the git repo was local.
-
py2js33777y@Sourcerer What? how can it be local? OP mentioned in the comment that they also used `git push`
Related Rants
-
l0om44100% Real. And it's not even the worst on the site.
-
Codazed11Being 100% serious, I saw a guy in my Computer Programming I class using MS Word to write code that he would c...
-
dfox8I worked with a good dev at one of my previous jobs, but one of his faults was that he was a bit scattered and...
Using git as a backup system
In a crontab:
```
cd $dir
git add .
git commit -m "Auto Commit"
```
rant
wk99