Installing TortoiseHg: need higher Mercurial version

846

Use the mercurial PPA

apt-add-repository ppa:mercurial-ppa/releases
apt-get update 
apt-get install tortoisehg
Share:
846

Related videos on Youtube

dca
Author by

dca

Updated on September 18, 2022

Comments

  • dca
    dca almost 2 years
    CREATE TRIGGER dbo.updateTrigger
       ON  dbo.Education 
       AFTER UPDATE
       AS 
    BEGIN
        SET NOCOUNT ON;
    IF NOT (UPDATE( HighestDegreeDoc) OR UPDATE (GPA) OR UPDATE (CreditHours))
        RETURN
    UPDATE dbo.School
    set Uploaded =1
    from dbo.School
    JOIN inerted i ON i.Uploaded = School.Uploaded
    END
    GO
    

    What is Wrong with this code. i am trying to update field in School table , field uploaded when (HighestDegreeDoc , GPA, CrediHours) update in Education Table. NOTE Education Table has more than 15 field, (Uploaded Field in School table update only when these 3 field change)

  • dca
    dca over 13 years
    yes this is right , i am trying to put flag. ok , i will try ID
  • user1015214
    user1015214 over 5 years
    I used this for Ubunut 18.04 too and it worked fine.
  • tatsu
    tatsu about 5 years
    doesn't work for 19.04 though. have to run sudo apt update --allow-unauthenticated && sudo apt install tortoisehg
  • AndrewWhalan
    AndrewWhalan almost 4 years
    This no longer works with Ubuntu 20 or Mint 20