1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
|
**
** Options:
** --autopush URL Automatically do a 'git push' to URL. The
** URL is remembered and used on subsequent exports
** to the same repository. Or if URL is "off" the
** auto-push mechanism is disabled
** --debug FILE Write fast-export text to FILE rather than
** piping it into "git fast-import".
** -f|--force Do the export even if nothing has changed
** --if-mirrored No-op if the mirror does not already exist.
** --limit N Add no more than N new check-ins to MIRROR.
** Useful for debugging
** --mainbranch NAME Use NAME as the name of the main branch in Git.
** The "trunk" branch of the Fossil repository is
** mapped into this name. "master" is used if
** this option is omitted.
** -q|--quiet Reduce output. Repeat for even less output.
** -v|--verbose More output.
**
** > fossil git import MIRROR
**
** TBD...
**
** > fossil git status
**
|
|
|
|
|
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
|
**
** Options:
** --autopush URL Automatically do a 'git push' to URL. The
** URL is remembered and used on subsequent exports
** to the same repository. Or if URL is "off" the
** auto-push mechanism is disabled
** --debug FILE Write fast-export text to FILE rather than
** piping it into "git fast-import"
** -f|--force Do the export even if nothing has changed
** --if-mirrored No-op if the mirror does not already exist
** --limit N Add no more than N new check-ins to MIRROR.
** Useful for debugging
** --mainbranch NAME Use NAME as the name of the main branch in Git.
** The "trunk" branch of the Fossil repository is
** mapped into this name. "master" is used if
** this option is omitted.
** -q|--quiet Reduce output. Repeat for even less output.
** -v|--verbose More output
**
** > fossil git import MIRROR
**
** TBD...
**
** > fossil git status
**
|