1

Recently, i am working on fossil and get to know about its commit procedure. Also what is the difference between update and pull command? I am working in trunk branch and willing to get changes from remote repository and push local changes in just one command.

santak
  • 327
  • 1
  • 13

1 Answers1

2
  1. fossil add .
  2. fossil commit -m "Initial Commit"

“pull” command will copy changes from the remote repository to the local repository. You could then use “update" to apply these changes to checked out files.

Qasim Hasnain
  • 198
  • 1
  • 1
  • 9