PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Monday, September 26, 2022

[FIXED] How to rsync files matched by .hgignore between two hg repositories

 September 26, 2022     binaries, mercurial, rsync     No comments   

Issue

How would you rsync files that are not tracked by mercurial between two repositories?

My .hgignore looks like this:

 
syntax: glob

*.mat
*.pdf
*.asv
*.bz
*.tar
*.zip
*.7zip
*.rar
*.gz
*.wmv
*.png
*.jpg
*.jpeg
*.bmp
*.tif
*.tiff
*.gif
*.avi
*.mpg
*.node
*.ncb
*.pdb
*.ele
*.hh
*.html
*.htm
*.xsl
*.log
*.o
*.ilk
*.cvs*
*.vproj
*.proj*
*.mex*
*.sln
*.run
*.make
Makefile
*.ignore_dirs
*.d

Thank you


Solution

you can produce a list of ignored files that exist in the repository with hg st -ni. nonversioned files with hg st -nu.



Answered By - just somebody
Answer Checked By - Marilyn (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing