Advertisement
sohotcall

Howto Fossil SCM

Jan 29th, 2020
242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. Membuat repositori
  2. > fossil init my.fossil
  3.  
  4. Mengkloning repositori dari online
  5. > fossil clone http://my.repo.com/ my.fossil
  6. atau
  7. > fossil clone http://me@my.repo.com/ my.fossil
  8.  
  9. Bekerja dengan repo
  10. > fossil open my.fossil
  11.  
  12. Mengkonfigurasi repositori,
  13. Melihat repositori dari browser
  14. > fossil ui my.fossil
  15.  
  16. Menambah hapus file ke repositori
  17. > fossil add file1.txt file2.txt
  18. > fossil rm file1.txt file2.txt
  19. > fossil addremove file1.txt file2.txt myfolder
  20.  
  21. Jangan lupa commit habis menambah hapus file
  22. > fossil commit
  23.  
  24. Menyinkronkan repositori dengan online
  25. > fossil push http://my.repo.com/
  26. > fossil pull http://my.repo.com/
  27. > fossil sync http://my.repo.com/
  28.  
  29. File-file agar sesuai dengan yang di repositori kini
  30. Gunakan nama brach atau potongan artifak check-in
  31. > fossil update 12345678
  32.  
  33. Memuat online repositori
  34. > fossil server my.fossil
  35. > fossil server folder-berisi-banyak-fossil
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement