Github + StudioLogos
#1
Hi all,

What is the fastest way to sync files (especially new added icons) from github
https://github.com/ccMatrix/StudioLogos/...9_mono_png
to local floder on Windows system ?

thanks for any tips
Reply
#2
Code:
git clone https://github.com/ccMatrix/StudioLogos/
git pull
Code:
GRANT ALL PRIVILEGES ON `xbmc_%`.* TO 'xbmc'@'%';
IF you have a mysql problem, find one of the 4 dozen threads already open.
Reply
#3
darkscout Wrote:
Code:
git clone https://github.com/ccMatrix/StudioLogos/
git pull

ok, thanks for that.

but it is possible to download just differences file not whole library (studio logo icons) ?
Reply
#4
git pull will only grab the differences. You do have to download the whole thing once.
Code:
GRANT ALL PRIVILEGES ON `xbmc_%`.* TO 'xbmc'@'%';
IF you have a mysql problem, find one of the 4 dozen threads already open.
Reply
#5
strange ...

Image

when I delete some files from StudioLogos folder, it still think that is up-to-date,

Image

or "git pull" download only when someone add new icons on
https://github.com/ccMatrix/StudioLogos/commits/master ?

I'm using PortableGit 1.7.4 client on Windows 7.

P.S. Sorry for newbie question, but I never use github.

thanks for help
Reply
#6
You already downloaded all the Studio Logos, so why would you expect 'git pull' to update anything immediately? If you deleted anything then git is treating it like a local change.

If you want to reset back to head, do a 'git clean -xfd'.
-
Git is a versioning system. There are hundreds of tutorials and explanations. When you 'clone' a git repository you're making a local copy. Any change that you make to that git just thinks that 'that's the change'. So say you clone the repository. Fix one of the images. You can then do a 'git commit' and commit those changes and if you had write access to git hub you could 'git push' them back where other people could download them.

So if you delete a file, git thinks "ok, this file doesn't need to be used any more". Git is mostly used for source code, but does work for images.
Code:
GRANT ALL PRIVILEGES ON `xbmc_%`.* TO 'xbmc'@'%';
IF you have a mysql problem, find one of the 4 dozen threads already open.
Reply

Logout Mark Read Team Forum Stats Members Help
Github + StudioLogos0