Updating git clones


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Updating git clones
# 1  
Old 09-03-2013
Updating git clones

Hi,

I'm fairly new to the git command and I'm trying to figure out how to check if your local clone is up to date with the master. I know you can do the same thing on packages with apt-get by using update and then upgrade. Is there something similar with git?
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Programming

Chinese Arduino UNO Clones - The Wavgat versus the generic UNO R3 Clone - The Winner Is?

Waiting for more fun Ardunio parts from AliExpress, I decided to test two cheap Chinese Arduino UNO clones. The Arduino UNO R3 (CH340G) MEGA328P The Wavgat UNO R3 (CH340G) MEGA328P Both of these Chinese Ardunio clones sell for about $3 USD, delivered to your door. The bottom line is... (0 Replies)
Discussion started by: Neo
0 Replies

2. UNIX for Beginners Questions & Answers

Git or PKGutil

i am running solaris 10 and they want GIt on there. The instructions that I found on line want me to use pkgutil which i don't have either. Most packages that i have installed come from the cd and are labeled SUNW... I see one instruction to add pkgadd -d http://get.opencsw.org/now ... (4 Replies)
Discussion started by: goya
4 Replies

3. UNIX for Beginners Questions & Answers

Install git on UNIX

How can I install git on unix using wget? (7 Replies)
Discussion started by: Akash BHardwaj
7 Replies

4. Red Hat

Git command

trying to add git link to my computer as root and getting error message git clone https://github.com/xxxxxxx/xxxxx.sh bash: git: command not found Please use CODE tags as required by forum rules! (3 Replies)
Discussion started by: DOkuwa
3 Replies

5. Solaris

Git Solaris

I need to be able to run git commands on a solaris 10 box, the git server is a Linux rh 6.9 , but I can not find much info out there on a git client for solaris 10. Is it just a pkgadd, or and install tar? or is there even any support for Solaris 10 git? My reading so far had not turned much up. ... (1 Reply)
Discussion started by: rrodgers
1 Replies

6. Solaris

Mount Emc Clones in VxVm

The Storage Admin presents a clone of a LUN, on the source side the device is under VxVM control, assuming that on the target side we have scanned the new cloned LUN at the OS level (solairs), from there on how do we initialize and mount the new volume. Please give some guidence on this or a... (1 Reply)
Discussion started by: Tirmazi
1 Replies

7. Programming

Wait for clones

Hi, I have a methode creating several clones with the following flags: CLONE_VM | CLONE_THREAD | CLONE_SIGHAND How to tell the parent process to wait for the clones' completion? pid = clone( ...) waitpid(pid, NULL , 0) always returns me -1 waitpid(-1, NULL, 0) does the same. (1 Reply)
Discussion started by: The-Forgotten
1 Replies

8. Shell Programming and Scripting

awk updating one file with another, comparing, updating

Hello, I read and search through this wonderful forum and tried different approaches but it seems I lack some knowledge and neurones ^^ Here is what I'm trying to achieve : file1: test filea 3495; test fileb 4578; test filec 7689; test filey 9978; test filez 12300; file2: test filea... (11 Replies)
Discussion started by: mecano
11 Replies
Login or Register to Ask a Question
Git::PurePerl(3pm)					User Contributed Perl Documentation					Git::PurePerl(3pm)

NAME
Git::PurePerl - A Pure Perl interface to Git repositories SYNOPSIS
my $git = Git::PurePerl->new( directory => '/path/to/git/' ); $git->master->committer; $git->master->comment; $git->get_object($git->master->tree); DESCRIPTION
This module is a Pure Perl interface to Git repositories. It was mostly based on Grit <http://grit.rubyforge.org/>. METHODS
master get_object get_object_packed get_object_loose create_object all_sha1s MAINTAINANCE
This module is maintained in git at http://github.com/bobtfish/git-pureperl/ <http://github.com/bobtfish/git-pureperl/>. Patches are welcome, please come speak to one of the Gitalist team on "#gitalist". AUTHOR
Leon Brocard <acme@astray.com> CONTRIBUTORS
Chris Reinhardt Tomas (t0m) Doran Dan (broquaint) Brook Alex Vandiver Dagfinn Ilmari Mannsaaker COPYRIGHT
Copyright (C) 2008, Leon Brocard and the above mentioned contributors. LICENSE
This module is free software; you can redistribute it or modify it under the same terms as Perl itself. perl v5.14.2 2011-07-15 Git::PurePerl(3pm)